home *** CD-ROM | disk | FTP | other *** search
- // MyCplApp.h : main header file for the MYCPLAPP DLL
- //
-
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
-
-
- #ifndef _DTSET_H_
- #define _DTSET_H_
-
-
- #include "resource.h"
- #include "ctrlpan.h"
-
-
- class CMyPanel : public CControlPanel
- {
- public:
- virtual LONG OnInquire(UINT uAppNum, NEWCPLINFO* pInfo);
- virtual LONG OnDblclk(HWND hwndCPl, UINT uAppNum, LONG lData);
- };
-
-
-
- class CMyCplAppApp : public CWinApp
- {
- public:
- CMyCplAppApp();
-
-
- //{{AFX_VIRTUAL(CMyCplAppApp)
- public:
- virtual void WinHelp(DWORD dwData, UINT nCmd = HELP_CONTEXT);
- //}}AFX_VIRTUAL
-
- //{{AFX_MSG(CMyCplAppApp)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
- // local data
- CMyPanel m_Control;
- };
-
-
- #endif //_DTSET_H_